home *** CD-ROM | disk | FTP | other *** search
/ H4CK3R 14 / hacker14.iso / programacao / visual / perl.exe / {code_OptiDir_} / Perl Templates.txt < prev    next >
Encoding:
INI File  |  2003-01-11  |  395 b   |  46 lines

  1. [elsif|elsif statement]
  2. elsif ( | ) {
  3.  
  4. }
  5.  
  6. [foreach|foreach loop]
  7. foreach ( | ) {
  8.  
  9. }
  10.  
  11. [if|if statement]
  12. if ( | ) {
  13.  
  14. }
  15.  
  16. [ifelse|if with else statement]
  17. if ( | ) {
  18.  
  19. }
  20. else   {
  21.  
  22. }
  23.  
  24. [sub|subroutine definition]
  25. sub name|
  26. {
  27.  
  28. return 1;
  29. }
  30.  
  31. [unless|unless statement]
  32. unless ( | ) {
  33.  
  34. }
  35.  
  36. [until|until loop]
  37. until ( | ) {
  38.  
  39. }
  40.  
  41. [while|while loop]
  42. while ( | ) {
  43.  
  44. }
  45.  
  46.